home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Programming / ModemLink / Source / LinkTags.c < prev    next >
C/C++ Source or Header  |  1997-10-24  |  732b  |  26 lines

  1. /*
  2. ** NAME: LinkTags.c
  3. ** DESC: Contains the ML_EstabslishTags() routine which in turn makes a call
  4. **       to ML_EstablishTagList() in modemlink.lib.  This is part of the
  5. **       ModemLink.lib.  Do not link with this if you're using the
  6. **       modemlink.DEVICE.
  7. **
  8. ** AUTHOR:        DATE:       DESCRIPTION:
  9. ** ~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10. ** Mike Veroukis  13 Mar 1997 Created
  11. */
  12.  
  13.  
  14. #include <devices/serial.h>
  15. #include <utility/tagitem.h>
  16.  
  17. #include "Link.h"
  18. #include "LinkTags.h"
  19.  
  20. ULONG ML_EstablishTags(struct IOExtLink *LinkIO, struct IOExtSer *SerIO, ULONG data, ...)
  21. {
  22.   struct TagItem *tags = (struct TagItem *)&data;
  23.  
  24.   return(ML_EstablishTagList(LinkIO, SerIO, tags));
  25. }
  26.